home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304D.ZIP;1 / EXBAS.ARJ / FGDOC / EXAMPLES / BASIC / 14-01.BAS < prev    next >
Encoding:
BASIC Source File  |  1994-01-24  |  238 b   |  14 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. DIM KeyCode AS STRING*1
  6. DIM AuxCode AS STRING*1
  7.  
  8. DO
  9.    FGgetkey KeyCode, AuxCode
  10.    PRINT USING "Key = ###  Aux = ###"; ASC(KeyCode), ASC(AuxCode)
  11. LOOP WHILE KeyCode <> CHR$(27)
  12.  
  13. END
  14.